home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 6 (Reseller Edition) / Apple Ref. & Pres. Lib.v6.0.toast / pc / 3-Presentations / Markets / Education / HyperCard In Education / Flexible Writing Planner / card_4482.txt < prev    next >
Text File  |  1990-04-02  |  27KB  |  1,711 lines

  1. -- card: 4482 from stack: in
  2. -- bmap block id: 10132
  3. -- flags: 0000
  4. -- background id: 2602
  5. -- name: student data
  6. ----- HyperTalk script -----
  7. on idle
  8.   --set scroll of cd fld "line numbers" to targetScrl
  9.   set scroll of cd fld "session dates" to scroll of cd fld "line numbers"
  10.   set scroll of cd fld "beginning times" to scroll of cd fld "line numbers"
  11.   set scroll of cd fld "card names" to scroll of cd fld "line numbers"
  12.   set scroll of cd fld "working seconds" to scroll of cd fld "line numbers"
  13.   set scroll of cd fld "pausing seconds" to scroll of cd fld "line numbers"
  14. end idle
  15.  
  16. on openCard
  17.   send openCard to this bg
  18.   set locktext of background field "topic" to false
  19.   unHilite
  20. end openCard
  21.  
  22. on closeCard
  23.   send closeCard to this bg
  24.   set locktext of background field "topic" to true
  25.   if visible of cd fld "print" is true
  26.   then send mouseup to cd btn id 52
  27. end closeCard
  28.  
  29.  
  30. -- part 11 (field)
  31. -- low flags: 01
  32. -- high flags: 0000
  33. -- rect: left=19 top=71 right=93 bottom=473
  34. -- title width / last selected line: 0
  35. -- icon id / first selected line: 0 / 0
  36. -- text alignment: 0
  37. -- font id: 3
  38. -- text size: 10
  39. -- style flags: 256
  40. -- line height: 10
  41. -- part name: 
  42.  
  43.  
  44. -- part 20 (button)
  45. -- low flags: 00
  46. -- high flags: A002
  47. -- rect: left=297 top=260 right=273 bottom=367
  48. -- title width / last selected line: 0
  49. -- icon id / first selected line: 0 / 0
  50. -- text alignment: 1
  51. -- font id: 3
  52. -- text size: 9
  53. -- style flags: 0
  54. -- line height: 12
  55. -- part name: Clear Data
  56. ----- HyperTalk script -----
  57. on mouseUp
  58.   answer "This will empty the data fields." with "OK" or "Cancel"
  59.   if it is "cancel" then exit mouseup
  60.   else
  61.     put empty into cd fld "session dates"
  62.     put empty into cd fld "beginning times"
  63.     put empty into cd fld "card names"
  64.     put empty into cd fld "working seconds"
  65.     put empty into cd fld "pausing seconds"
  66.     send mouseUp to cd btn id 27
  67.   end if
  68. end mouseUp
  69.  
  70.  
  71.  
  72. -- part 27 (button)
  73. -- low flags: 00
  74. -- high flags: A002
  75. -- rect: left=371 top=260 right=273 bottom=458
  76. -- title width / last selected line: 0
  77. -- icon id / first selected line: 0 / 0
  78. -- text alignment: 1
  79. -- font id: 3
  80. -- text size: 9
  81. -- style flags: 0
  82. -- line height: 12
  83. -- part name: Set Fields to Top
  84. ----- HyperTalk script -----
  85. on mouseUp
  86.   set scroll of cd fld "session dates" to 0
  87.   set scroll of cd fld "beginning times" to 0
  88.   set scroll of cd fld "card names" to 0
  89.   set scroll of cd fld "working seconds" to 0
  90.   set scroll of cd fld "pausing seconds" to 0
  91.   set scroll of cd fld "line numbers" to 0
  92. end mouseUp
  93.  
  94.  
  95.  
  96.  
  97. -- part 29 (button)
  98. -- low flags: 00
  99. -- high flags: A002
  100. -- rect: left=297 top=275 right=288 bottom=458
  101. -- title width / last selected line: 0
  102. -- icon id / first selected line: 0 / 0
  103. -- text alignment: 1
  104. -- font id: 3
  105. -- text size: 9
  106. -- style flags: 0
  107. -- line height: 12
  108. -- part name: Convert seconds to min:sec
  109. ----- HyperTalk script -----
  110. on mouseUp
  111.   repeat with i = 1 to the number of lines of card field "working seconds"
  112.     set cursor to busy
  113.     get line i of card field "working seconds"
  114.     if it contains ":" then next repeat
  115.     else if it is not empty then
  116.       put it into begSec
  117.       put it into temp
  118.       divide temp by 60
  119.       put trunc(temp) into temp
  120.       put temp into theMinutes
  121.       multiply temp by 60
  122.       subtract temp from begSec
  123.       put begSec into theSeconds
  124.       if theSeconds < 10 then put "0" before theSeconds
  125.       if theMinutes < 10 then put "0" before theMinutes
  126.       put theMinutes&":"&theSeconds into theTime
  127.       put theTime into line i of card field "working seconds"
  128.     end if
  129.   end repeat
  130.   repeat with i = 1 to the number of lines of card field "pausing seconds"
  131.     set cursor to busy
  132.     get line i of card field "pausing seconds"
  133.     if it contains ":" then next repeat
  134.     else if it is not empty then
  135.       put it into begSec
  136.       put it into temp
  137.       divide temp by 60
  138.       put trunc(temp) into temp
  139.       put temp into theMinutes
  140.       multiply temp by 60
  141.       subtract temp from begSec
  142.       put begSec into theSeconds
  143.       if theSeconds < 10 then put "0" before theSeconds
  144.       if theMinutes < 10 then put "0" before theMinutes
  145.       put theMinutes&":"&theSeconds into theTime
  146.       put theTime into line i of card field "pausing seconds"
  147.     end if
  148.   end repeat
  149. end mouseUp
  150.  
  151.  
  152.  
  153.  
  154. -- part 31 (button)
  155. -- low flags: 00
  156. -- high flags: 2000
  157. -- rect: left=264 top=8 right=37 bottom=312
  158. -- title width / last selected line: 0
  159. -- icon id / first selected line: 0 / 0
  160. -- text alignment: 1
  161. -- font id: 0
  162. -- text size: 12
  163. -- style flags: 0
  164. -- line height: 16
  165. -- part name: Save this topic->
  166. ----- HyperTalk script -----
  167. on mouseUp
  168.   global topic
  169.   set cursor to watch
  170.   put background field "topic" of card "student data" into topic
  171.   get the number of cards in background "planners"
  172.   repeat with i = 1 to it
  173.     set cursor to busy
  174.     put topic into background field "topic" of card i of background "planners"
  175.   end repeat
  176. end mouseUp
  177.  
  178.  
  179.  
  180. -- part 32 (button)
  181. -- low flags: 00
  182. -- high flags: C002
  183. -- rect: left=40 top=260 right=273 bottom=178
  184. -- title width / last selected line: 0
  185. -- icon id / first selected line: 0 / 0
  186. -- text alignment: 0
  187. -- font id: 3
  188. -- text size: 9
  189. -- style flags: 0
  190. -- line height: 12
  191. -- part name: Student recording is:  ON
  192. ----- HyperTalk script -----
  193. on mouseUp
  194.   global begSec
  195.   if the short name of target contains " on"
  196.   then
  197.   set name of target to "Student recording is:  OFF"
  198.   set hilite of target to false
  199. else
  200.   set name of target to "Student recording is:  ON"
  201.   set hilite of target to true
  202.   put the seconds into begSec
  203. end if
  204. end mouseUp
  205.  
  206.  
  207. -- part 34 (field)
  208. -- low flags: 00
  209. -- high flags: 0000
  210. -- rect: left=47 top=47 right=65 bottom=219
  211. -- title width / last selected line: 0
  212. -- icon id / first selected line: 0 / 0
  213. -- text alignment: 0
  214. -- font id: 3
  215. -- text size: 10
  216. -- style flags: 256
  217. -- line height: 13
  218. -- part name: name
  219.  
  220.  
  221. -- part 35 (button)
  222. -- low flags: 00
  223. -- high flags: A000
  224. -- rect: left=371 top=296 right=342 bottom=409
  225. -- title width / last selected line: 0
  226. -- icon id / first selected line: 1008 / 1008
  227. -- text alignment: 1
  228. -- font id: 0
  229. -- text size: 12
  230. -- style flags: 0
  231. -- line height: 16
  232. -- part name: Print
  233. ----- HyperTalk script -----
  234. on mouseUp
  235.   answer "Are sure you want to print?" with "OK" or "Cancel"
  236.   if it is "cancel" then exit mouseup
  237.   set cursor to watch
  238.   lock screen
  239.   send mouseup to cd btn id 29
  240.   show cd fld "heading"
  241.   show cd fld "heading.2"
  242.   show cd fld "print"
  243.   show cd fld "print.2"
  244.   put empty into cd fld "print"
  245.   put empty into cd fld "print.2"
  246.   set scroll of cd fld "print" to 0
  247.   set scroll of cd fld "print.2" to 0
  248.  
  249.   put "Student:  "&cd fld "name" into line 3 of cd fld heading
  250.   put "   Date:  "&the long date into line 4 of cd fld heading
  251.   put "  Class:  "&cd fld "class" into line 5 of cd fld heading
  252.   put "  Topic:  "&bg fld "topic" into line 6 of cd fld heading
  253.  
  254.  
  255.   repeat with i = 1 to the number of lines of cd fld "card names"
  256.     if i>50 then put "print.2" into printFld
  257.     else put "print" into printFld
  258.     put "Working on line "&i&" of "&the number of lines of cd fld "card names"&"."
  259.     set cursor to busy
  260.     repeat with h = 3 to 8
  261.       set cursor to busy
  262.       if h is 4 or h is 5 then put 11 into width
  263.       if h is 7 or h is 8 then put 10 into width
  264.       if h is 6 then put 22 into width
  265.       if h is 3 then put 5 into width
  266.  
  267.       put line i of cd fld h into temp
  268.       get the number of chars of temp
  269.       subtract it from width
  270.       repeat with j = 1 to width
  271.         put " " after temp
  272.       end repeat
  273.       put temp after line i of cd fld printFld
  274.     end repeat
  275.     put return after cd fld printFld
  276.   end repeat
  277.  
  278.   --‚Ä¢deletes blank lines of cd fld "print.2"
  279.   if cd fld "print.2" is not empty then
  280.     repeat with m = 1 to (the number of lines of cd fld "print.2")-1
  281.       set cursor to busy
  282.       get the number of chars of line m of cd fld "print.2"
  283.       if it is 0 then delete line 1 of cd fld "print.2"
  284.     end repeat
  285.   end if
  286.  
  287.   --‚Ä¢puts heading into print flds
  288.   put cd fld "heading"&return before cd fld "print"
  289.   if cd fld "print.2" is not empty then
  290.     put "Student:  "&cd fld "name" into line 3 of cd fld "heading.2"
  291.     put cd fld "heading.2"&return before cd fld "print.2"
  292.   end if
  293.  
  294.   answer "Be sure the printer is ready." with "Print" or "Cancel"
  295.   if it is "cancel" then
  296.     send mouseup to cd btn "print fields"
  297.     hide msg
  298.     exit mouseup
  299.   end if
  300.  
  301.   select text of cd fld "print"
  302.   type "c" with commandKey
  303.   printClip
  304.  
  305.   if cd fld "print.2" is not empty then
  306.     select text of cd fld "print.2"
  307.     type "c" with commandKey
  308.     printClip
  309.   end if
  310.  
  311.   send mouseup to cd btn "print fields"
  312.   hide msg
  313. end mouseUp
  314.  
  315.  
  316. -- part 40 (button)
  317. -- low flags: 00
  318. -- high flags: A002
  319. -- rect: left=196 top=260 right=273 bottom=291
  320. -- title width / last selected line: 0
  321. -- icon id / first selected line: 0 / 0
  322. -- text alignment: 0
  323. -- font id: 3
  324. -- text size: 9
  325. -- style flags: 0
  326. -- line height: 12
  327. -- part name: lock/unlock fields
  328. ----- HyperTalk script -----
  329. on mouseUp
  330.   repeat with i = 1 to the number of cd flds
  331.     set the locktext of cd fld i to not the locktext of cd fld i
  332.   end repeat
  333.   set the locktext of cd fld "line numbers" to true
  334.   set the locktext of cd fld id 56 to true
  335.   set the locktext of cd fld id 55 to true
  336.   set the locktext of cd fld "name" to false
  337.   set the locktext of cd fld "class" to false
  338. end mouseUp
  339.  
  340.  
  341.  
  342. -- part 23 (field)
  343. -- low flags: 01
  344. -- high flags: 0007
  345. -- rect: left=19 top=92 right=256 bottom=483
  346. -- title width / last selected line: 0
  347. -- icon id / first selected line: 0 / 0
  348. -- text alignment: 0
  349. -- font id: 4
  350. -- text size: 9
  351. -- style flags: 0
  352. -- line height: 12
  353. -- part name: Line Numbers
  354. ----- HyperTalk script -----
  355. on mouseDown
  356.   if target is empty then exit mousedown
  357.   global txtline
  358.   --This script does not work with a field that has "wide margins" or
  359.   --a text line that wraps.
  360.   put item 2 of the clickloc into where
  361.   put (item 1 of rect of target) +1 into fldlft
  362.   put (item 3 of rect of target) -17 into fldRght
  363.   put item 2 of rect of target into fldTop
  364.   put item 4 of rect of target into fldBotm
  365.   put textHeight of target into txtHght
  366.   put round (txtHght/2) into hlfTxtHght
  367.   put round ((fldBotm-fldTop) / txtHght) into noOfLines
  368.   put round ((where-fldTop+hlfTxtHght)/txtHght) into lineNum
  369.   put round (the scroll of target/txtHght)+lineNum into txtLine
  370.   if line txtline of cd fld "card names" is empty then exit mouseDown
  371.   if lineNum < 1 or lineNum > noOfLines then exit mouseDown
  372.   set rect of cd btn "hilited" to fldLft,fldTop,fldRght,fldTop+txtHght
  373.   put round (fldLft + (fldRght-fldLft)/2) into x
  374.   put round (fldTop + (lineNum*txtHght)-hlfTxtHght+1) into y
  375.   set loc of cd btn "hilited" to x,y
  376.   set hilite of cd btn "hilited" to true
  377.   show cd btn "hilited"
  378.   pass mouseDown
  379. end mouseDown
  380.  
  381. on mouseup
  382.   --set cursor to watch
  383.   global txtLine
  384.   if line txtline of cd fld "card names" is empty then
  385.     hide cd btn "hilited"
  386.     exit mouseup
  387.   end if
  388.   answer "Are you sure you want to DELETE line ""e&txtline"e &"?" with "OK" or "Cancel"
  389.   if it is "cancel" then
  390.     hide cd btn "hilited"
  391.     exit mouseup
  392.   else
  393.     delete line txtline of cd fld "session dates"
  394.     delete line txtline of cd fld "beginning times"
  395.     delete line txtline of cd fld "card names"
  396.     delete line txtline of cd fld "working seconds"
  397.     delete line txtline of cd fld "pausing seconds"
  398.     hide cd btn "hilited"
  399.   end if
  400. end mouseup
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407.  
  408. -- part 41 (field)
  409. -- low flags: 01
  410. -- high flags: 0007
  411. -- rect: left=45 top=92 right=256 bottom=127
  412. -- title width / last selected line: 0
  413. -- icon id / first selected line: 0 / 0
  414. -- text alignment: 0
  415. -- font id: 4
  416. -- text size: 9
  417. -- style flags: 0
  418. -- line height: 12
  419. -- part name: session dates
  420. ----- HyperTalk script -----
  421. on mouseup
  422.   send mouseup to cd fld "line numbers"
  423. end mouseup
  424.  
  425. on mousedown
  426.   send mousedown to cd fld "line numbers"
  427. end mousedown
  428.  
  429.  
  430.  
  431. -- part 42 (field)
  432. -- low flags: 01
  433. -- high flags: 0007
  434. -- rect: left=110 top=92 right=256 bottom=192
  435. -- title width / last selected line: 0
  436. -- icon id / first selected line: 0 / 0
  437. -- text alignment: 0
  438. -- font id: 4
  439. -- text size: 9
  440. -- style flags: 0
  441. -- line height: 12
  442. -- part name: beginning times
  443. ----- HyperTalk script -----
  444. on mouseup
  445.   send mouseup to cd fld "line numbers"
  446. end mouseup
  447.  
  448. on mousedown
  449.   send mousedown to cd fld "line numbers"
  450. end mousedown
  451.  
  452.  
  453.  
  454. -- part 43 (field)
  455. -- low flags: 01
  456. -- high flags: 0007
  457. -- rect: left=175 top=92 right=256 bottom=356
  458. -- title width / last selected line: 0
  459. -- icon id / first selected line: 0 / 0
  460. -- text alignment: 0
  461. -- font id: 4
  462. -- text size: 9
  463. -- style flags: 0
  464. -- line height: 12
  465. -- part name: card names
  466. ----- HyperTalk script -----
  467. on mouseup
  468.   send mouseup to cd fld "line numbers"
  469. end mouseup
  470.  
  471. on mousedown
  472.   send mousedown to cd fld "line numbers"
  473. end mousedown
  474.  
  475.  
  476.  
  477. -- part 44 (field)
  478. -- low flags: 01
  479. -- high flags: 0007
  480. -- rect: left=339 top=92 right=256 bottom=411
  481. -- title width / last selected line: 0
  482. -- icon id / first selected line: 0 / 0
  483. -- text alignment: 0
  484. -- font id: 4
  485. -- text size: 9
  486. -- style flags: 0
  487. -- line height: 12
  488. -- part name: working seconds
  489. ----- HyperTalk script -----
  490. on mouseup
  491.   send mouseup to cd fld "line numbers"
  492. end mouseup
  493.  
  494. on mousedown
  495.   send mousedown to cd fld "line numbers"
  496. end mousedown
  497.  
  498.  
  499.  
  500. -- part 45 (field)
  501. -- low flags: 01
  502. -- high flags: 0007
  503. -- rect: left=394 top=92 right=256 bottom=466
  504. -- title width / last selected line: 0
  505. -- icon id / first selected line: 0 / 0
  506. -- text alignment: 0
  507. -- font id: 4
  508. -- text size: 9
  509. -- style flags: 0
  510. -- line height: 12
  511. -- part name: pausing seconds
  512. ----- HyperTalk script -----
  513. on mouseup
  514.   send mouseup to cd fld "line numbers"
  515. end mouseup
  516.  
  517. on mousedown
  518.   send mousedown to cd fld "line numbers"
  519. end mousedown
  520.  
  521.  
  522.  
  523. -- part 46 (button)
  524. -- low flags: 00
  525. -- high flags: 0001
  526. -- rect: left=449 top=93 right=255 bottom=466
  527. -- title width / last selected line: 0
  528. -- icon id / first selected line: 0 / 0
  529. -- text alignment: 1
  530. -- font id: 0
  531. -- text size: 12
  532. -- style flags: 0
  533. -- line height: 16
  534. -- part name: 
  535.  
  536.  
  537. -- part 49 (button)
  538. -- low flags: 80
  539. -- high flags: 4000
  540. -- rect: left=20 top=225 right=237 bottom=466
  541. -- title width / last selected line: 0
  542. -- icon id / first selected line: 0 / 0
  543. -- text alignment: 1
  544. -- font id: 0
  545. -- text size: 12
  546. -- style flags: 0
  547. -- line height: 16
  548. -- part name: hilited
  549. ----- HyperTalk script -----
  550. on mouseUp
  551.   send mouseup to cd fld "line numbers"
  552. end mouseUp
  553.  
  554.  
  555.  
  556. -- part 50 (field)
  557. -- low flags: 80
  558. -- high flags: 0007
  559. -- rect: left=19 top=90 right=182 bottom=483
  560. -- title width / last selected line: 0
  561. -- icon id / first selected line: 0 / 0
  562. -- text alignment: 0
  563. -- font id: 4
  564. -- text size: 9
  565. -- style flags: 0
  566. -- line height: 9
  567. -- part name: print
  568. ----- HyperTalk script -----
  569. on mouseup
  570.   send mouseup to cd btn id 52
  571. end mouseup
  572.  
  573.  
  574. -- part 52 (button)
  575. -- low flags: 00
  576. -- high flags: 0000
  577. -- rect: left=0 top=278 right=290 bottom=12
  578. -- title width / last selected line: 0
  579. -- icon id / first selected line: 0 / 0
  580. -- text alignment: 1
  581. -- font id: 0
  582. -- text size: 12
  583. -- style flags: 0
  584. -- line height: 16
  585. -- part name: print fields
  586. ----- HyperTalk script -----
  587. on mouseUp
  588.   lock screen
  589.   set visible of cd fld "print" to not visible of cd fld "print"
  590.   set visible of cd fld "print.2" to not visible of cd fld "print.2"
  591.   set visible of cd fld "heading" to not visible of cd fld "heading"
  592.   set visible of cd fld "heading.2" to not visible of cd fld "heading.2"
  593.   unlock screen with visual dissolve
  594. end mouseUp
  595.  
  596.  
  597.  
  598. -- part 55 (field)
  599. -- low flags: 01
  600. -- high flags: 0000
  601. -- rect: left=6 top=47 right=65 bottom=48
  602. -- title width / last selected line: 0
  603. -- icon id / first selected line: 0 / 0
  604. -- text alignment: 65535
  605. -- font id: 3
  606. -- text size: 10
  607. -- style flags: 256
  608. -- line height: 13
  609. -- part name: 
  610.  
  611.  
  612. -- part 56 (field)
  613. -- low flags: 01
  614. -- high flags: 0000
  615. -- rect: left=226 top=47 right=65 bottom=268
  616. -- title width / last selected line: 0
  617. -- icon id / first selected line: 0 / 0
  618. -- text alignment: 65535
  619. -- font id: 3
  620. -- text size: 10
  621. -- style flags: 256
  622. -- line height: 13
  623. -- part name: 
  624.  
  625.  
  626. -- part 57 (field)
  627. -- low flags: 00
  628. -- high flags: 0000
  629. -- rect: left=267 top=49 right=72 bottom=507
  630. -- title width / last selected line: 0
  631. -- icon id / first selected line: 0 / 0
  632. -- text alignment: 0
  633. -- font id: 3
  634. -- text size: 10
  635. -- style flags: 256
  636. -- line height: 10
  637. -- part name: Class
  638.  
  639.  
  640. -- part 65 (button)
  641. -- low flags: 00
  642. -- high flags: A002
  643. -- rect: left=196 top=275 right=288 bottom=291
  644. -- title width / last selected line: 0
  645. -- icon id / first selected line: 0 / 0
  646. -- text alignment: 1
  647. -- font id: 3
  648. -- text size: 9
  649. -- style flags: 0
  650. -- line height: 12
  651. -- part name: Export Data
  652. ----- HyperTalk script -----
  653. on mouseUp
  654.   answer "Are sure you want to export this data?" with "OK" or "Cancel"
  655.   if it is "cancel" then exit mouseup
  656.  
  657.   set cursor to watch
  658.   put empty into cd fld "export"
  659.   lock screen
  660.   --send mouseup to cd btn id 29  --‚Ä¢convert secs to min:sec
  661.  
  662.   repeat with i = 1 to the number of lines of cd fld "card names"
  663.     set cursor to busy
  664.     put "Working on line "&i&" of "&the number of lines of cd fld "card names"&"."
  665.  
  666.     repeat with h = 3 to 8
  667.       set cursor to busy
  668.  
  669.       put line i of cd fld h into temp
  670.       put temp&tab after line i of cd fld "export"
  671.     end repeat
  672.  
  673.     put return after cd fld "export"
  674.   end repeat
  675.  
  676.   put cd fld "name" into StudentName
  677.   put NewFileName("Student File Name",StudentName) into exportFile
  678.   if exportFile is empty then exit mouseup
  679.  
  680.   open file studentName
  681.   write cd fld "export" to file studentName
  682.   close file studentName
  683.  
  684.   hide msg
  685. end mouseUp
  686.  
  687.  
  688. -- part 53 (field)
  689. -- low flags: 80
  690. -- high flags: 0002
  691. -- rect: left=19 top=0 right=91 bottom=483
  692. -- title width / last selected line: 0
  693. -- icon id / first selected line: 0 / 0
  694. -- text alignment: 0
  695. -- font id: 4
  696. -- text size: 9
  697. -- style flags: 0
  698. -- line height: 9
  699. -- part name: heading
  700. ----- HyperTalk script -----
  701. on mouseup
  702.   send mouseup to cd btn id 52
  703. end mouseup
  704.  
  705.  
  706. -- part 58 (field)
  707. -- low flags: 81
  708. -- high flags: 0007
  709. -- rect: left=19 top=238 right=330 bottom=483
  710. -- title width / last selected line: 0
  711. -- icon id / first selected line: 0 / 0
  712. -- text alignment: 0
  713. -- font id: 4
  714. -- text size: 9
  715. -- style flags: 0
  716. -- line height: 9
  717. -- part name: print.2
  718. ----- HyperTalk script -----
  719. on mouseup
  720.   send mouseup to cd btn id 52
  721. end mouseup
  722.  
  723.  
  724. -- part 60 (field)
  725. -- low flags: 81
  726. -- high flags: 0002
  727. -- rect: left=19 top=181 right=238 bottom=483
  728. -- title width / last selected line: 0
  729. -- icon id / first selected line: 0 / 0
  730. -- text alignment: 0
  731. -- font id: 4
  732. -- text size: 9
  733. -- style flags: 0
  734. -- line height: 9
  735. -- part name: heading.2
  736. ----- HyperTalk script -----
  737. on mouseup
  738.   send mouseup to cd btn id 52
  739. end mouseup
  740.  
  741.  
  742. -- part 63 (field)
  743. -- low flags: 80
  744. -- high flags: 0007
  745. -- rect: left=6 top=172 right=273 bottom=296
  746. -- title width / last selected line: 0
  747. -- icon id / first selected line: 0 / 0
  748. -- text alignment: 0
  749. -- font id: 3
  750. -- text size: 9
  751. -- style flags: 0
  752. -- line height: 12
  753. -- part name: export
  754.  
  755.  
  756. -- part contents for card part 23
  757. ----- text -----
  758. 1
  759. 2
  760. 3
  761. 4
  762. 5
  763. 6
  764. 7
  765. 8
  766. 9
  767. 10
  768. 11
  769. 12
  770. 13
  771. 14
  772. 15
  773. 16
  774. 17
  775. 18
  776. 19
  777. 20
  778. 21
  779. 22
  780. 23
  781. 24
  782. 25
  783. 26
  784. 27
  785. 28
  786. 29
  787. 30
  788. 31
  789. 32
  790. 33
  791. 34
  792. 35
  793. 36
  794. 37
  795. 38
  796. 39
  797. 40
  798. 41
  799. 42
  800. 43
  801. 44
  802. 45
  803. 46
  804. 47
  805. 48
  806. 49
  807. 50
  808. 51
  809. 52
  810. 53
  811. 54
  812. 55
  813. 56
  814. 57
  815. 58
  816. 59
  817. 60
  818. 61
  819. 62
  820. 63
  821. 64
  822. 65
  823. 66
  824. 67
  825. 68
  826. 69
  827. 70
  828. 71
  829. 72
  830. 73
  831. 74
  832. 75
  833. 76
  834. 77
  835. 78
  836. 79
  837. 80
  838. 81
  839. 82
  840. 83
  841. 84
  842. 85
  843. 86
  844. 87
  845. 88
  846. 89
  847. 90
  848. 91
  849. 92
  850. 93
  851. 94
  852. 95
  853. 96
  854. 97
  855. 98
  856. 99
  857. 100
  858. 101
  859. 102
  860. 103
  861. 104
  862. 105
  863. 106
  864. 107
  865. 108
  866. 109
  867. 110
  868. 111
  869. 112
  870. 113
  871. 114
  872. 115
  873. 116
  874. 117
  875. 118
  876. 119
  877. 120
  878. 121
  879. 122
  880. 123
  881. 124
  882. 125
  883. 126
  884. 127
  885. 128
  886. 129
  887. 130
  888. 131
  889. 132
  890. 133
  891. 134
  892. 135
  893. 136
  894. 137
  895. 138
  896. 139
  897. 140
  898. 141
  899. 142
  900. 143
  901. 144
  902. 145
  903. 146
  904. 147
  905. 148
  906. 149
  907. 150
  908. 151
  909. 152
  910. 153
  911. 154
  912. 155
  913. 156
  914. 157
  915. 158
  916. 159
  917. 160
  918. 161
  919. 162
  920. 163
  921. 164
  922. 165
  923. 166
  924. 167
  925. 168
  926. 169
  927. 170
  928. 171
  929. 172
  930. 173
  931. 174
  932. 175
  933. 176
  934. 177
  935. 178
  936. 179
  937. 180
  938. 181
  939. 182
  940. 183
  941. 184
  942. 185
  943. 186
  944. 187
  945. 188
  946. 189
  947. 190
  948. 191
  949. 192
  950. 193
  951. 194
  952. 195
  953. 196
  954. 197
  955. 198
  956. 199
  957. 200
  958. 201
  959. 202
  960. 203
  961. 204
  962. 205
  963. 206
  964. 207
  965. 208
  966. 209
  967. 210
  968. 211
  969. 212
  970. 213
  971. 214
  972. 215
  973. 216
  974. 217
  975. 218
  976. 219
  977. 220
  978. 221
  979. 222
  980. 223
  981. 224
  982. 225
  983. 226
  984. 227
  985. 228
  986. 229
  987. 230
  988. 231
  989. 232
  990. 233
  991. 234
  992. 235
  993. 236
  994. 237
  995. 238
  996. 239
  997. 240
  998. 241
  999. 242
  1000. 243
  1001. 244
  1002. 245
  1003. 246
  1004. 247
  1005. 248
  1006. 249
  1007. 250
  1008.  
  1009. -- part contents for background part 19
  1010. ----- text -----
  1011. Indians of NorthWest USA
  1012.  
  1013. -- part contents for card part 11
  1014. ----- text -----
  1015.                        Beginning                                             Work       Pause
  1016. No.     Date          Time                    Card                       Time        Time
  1017.  
  1018. -- part contents for card part 53
  1019. ----- text -----
  1020.                   - S T U D E N T    D A T A -
  1021.  
  1022. Student:  Mary
  1023.    Date:  Friday, December 9, 1988
  1024.   Class:  Class, Teacher
  1025.   Topic:  Indians
  1026.   Topic:  No topic has been entered.  See your teacher.
  1027.  
  1028. ================================================================
  1029. No.    Date       Time         Card              Work      Pause
  1030. ================================================================
  1031.  
  1032. -- part contents for card part 55
  1033. ----- text -----
  1034. Name:
  1035.  
  1036. -- part contents for card part 56
  1037. ----- text -----
  1038. Class:
  1039.  
  1040. -- part contents for card part 57
  1041. ----- text -----
  1042. Class, Teacher
  1043.  
  1044. -- part contents for card part 60
  1045. ----- text -----
  1046.                              - 2 -
  1047.  
  1048. Student:  
  1049. ================================================================
  1050. No.    Date       Time         Card              Work      Pause
  1051. ================================================================
  1052.  
  1053. -- part contents for card part 41
  1054. ----- text -----
  1055. 12/9/88
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065. 1/6/89
  1066.  
  1067.  
  1068.  
  1069.  
  1070.  
  1071. 2/2/89
  1072.  
  1073.  
  1074. 2/2/89
  1075.  
  1076.  
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082.  
  1083.  
  1084.  
  1085.  
  1086. 2/20/89
  1087.  
  1088.  
  1089.  
  1090.  
  1091.  
  1092.  
  1093. 2/21/89
  1094.  
  1095.  
  1096.  
  1097.  
  1098.  
  1099.  
  1100. 2/22/89
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120.  
  1121. 2/22/89
  1122.  
  1123.  
  1124.  
  1125.  
  1126.  
  1127.  
  1128.  
  1129.  
  1130.  
  1131.  
  1132.  
  1133.  
  1134.  
  1135.  
  1136.  
  1137.  
  1138.  
  1139.  
  1140.  
  1141. 3/24/89
  1142. 3/24/89
  1143.  
  1144. 3/24/89
  1145. 3/24/89
  1146.  
  1147.  
  1148.  
  1149.  
  1150.  
  1151.  
  1152.  
  1153.  
  1154. 3/24/89
  1155.  
  1156.  
  1157.  
  1158.  
  1159.  
  1160.  
  1161.  
  1162.  
  1163. 11/30/89
  1164. 11/30/89
  1165. 2/20/90
  1166.  
  1167. -- part contents for card part 42
  1168. ----- text -----
  1169. 5:17 PM
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175.  
  1176.  
  1177.  
  1178.  
  1179. 7:11 PM
  1180.  
  1181.  
  1182.  
  1183.  
  1184.  
  1185. 9:30 PM
  1186.  
  1187.  
  1188. 9:33 PM
  1189.  
  1190.  
  1191.  
  1192.  
  1193.  
  1194.  
  1195.  
  1196.  
  1197.  
  1198.  
  1199.  
  1200. 3:50 PM
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207. 9:18 PM
  1208.  
  1209.  
  1210.  
  1211.  
  1212.  
  1213.  
  1214. 2:04 PM
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235. 2:43 PM
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245.  
  1246.  
  1247.  
  1248.  
  1249.  
  1250.  
  1251.  
  1252.  
  1253.  
  1254.  
  1255. 10:28 AM
  1256. 10:29 AM
  1257.  
  1258. 10:29 AM
  1259. 3:24 PM
  1260.  
  1261.  
  1262.  
  1263.  
  1264.  
  1265.  
  1266.  
  1267.  
  1268. 3:25 PM
  1269.  
  1270.  
  1271.  
  1272.  
  1273.  
  1274.  
  1275.  
  1276.  
  1277. 1:53 PM
  1278. 1:54 PM
  1279. 9:03 PM
  1280.  
  1281. -- part contents for card part 44
  1282. ----- text -----
  1283. 00:45
  1284. 00:19
  1285. 05:16
  1286.  
  1287. 02:19
  1288. 01:36
  1289. 00:09
  1290. 00:13
  1291.  
  1292. 01:28
  1293. 00:19
  1294. 00:14
  1295. 00:10
  1296. 00:09
  1297. 01:53
  1298. 05:49
  1299. 00:02
  1300. 00:02
  1301. 00:01
  1302. 73:13
  1303. 78:48
  1304. 00:11
  1305. 00:29
  1306. 00:34
  1307. 02:13
  1308. 00:07
  1309. 00:08
  1310. 00:01
  1311. 00:16
  1312. 00:02
  1313. 00:11
  1314. 01:09
  1315. 00:34
  1316. 00:04
  1317.  
  1318. 03:08
  1319. 00:02
  1320. 06:47
  1321. 00:33
  1322. 00:08
  1323. 00:09
  1324. 00:09
  1325. 02:05
  1326. 00:53
  1327.  
  1328. 01:20
  1329. 00:02
  1330. 16:47
  1331. 00:00
  1332. 01:18
  1333. 00:42
  1334. 00:04
  1335. 00:01
  1336. 00:02
  1337. 00:07
  1338. 00:09
  1339. 00:02
  1340. 00:01
  1341. 00:01
  1342. 00:01
  1343. 00:26
  1344. 00:02
  1345. 00:02
  1346. 00:07
  1347. 87
  1348. 3
  1349. 15
  1350. 41
  1351. 3
  1352. 0
  1353. 1
  1354. 2
  1355. 0
  1356. 1
  1357. 0
  1358. 0
  1359. 3
  1360. 32
  1361. 2
  1362. 1
  1363. 1
  1364. 1
  1365. 1
  1366. 0
  1367. 0
  1368. 2
  1369. 1
  1370. 3
  1371. 5
  1372. 2
  1373. 53
  1374. 0
  1375. 0
  1376. 0
  1377. 1
  1378. 0
  1379.  
  1380. 0
  1381. 0
  1382. 4
  1383. 1
  1384.  
  1385. 1
  1386. 2
  1387. 0
  1388. 0
  1389. 1
  1390. 1
  1391.  
  1392. 7
  1393.  
  1394.  
  1395. -- part contents for card part 43
  1396. ----- text -----
  1397. student data
  1398. audience/purpose
  1399. Organize Ideas
  1400. Pausing
  1401. Organize Ideas
  1402. essay
  1403. alike/different
  1404. audience/purpose
  1405. Pausing
  1406. student data
  1407. student data
  1408. audience/purpose
  1409. alike/different
  1410. list ideas
  1411. Organize Ideas
  1412. student data
  1413. list ideas
  1414. audience/purpose
  1415. alike/different
  1416. Organize Ideas
  1417. Organize Ideas
  1418. help
  1419. Organize Ideas
  1420. Organize Ideas
  1421. Organize Ideas
  1422. student data
  1423. help
  1424. student data
  1425. Organize Ideas
  1426. alike/different
  1427. Organize Ideas
  1428. student data
  1429. help
  1430. student data
  1431. Pausing
  1432. student data
  1433. help
  1434. student data
  1435. student data
  1436. audience/purpose
  1437. alike/different
  1438. list ideas
  1439. Organize Ideas
  1440. essay
  1441. Pausing
  1442. student data
  1443. audience/purpose
  1444. Organize Ideas
  1445. alike/different
  1446. Organize Ideas
  1447. student data
  1448. Organize Ideas
  1449. alike/different
  1450. Organize Ideas
  1451. student data
  1452. Organize Ideas
  1453. essay
  1454. alike/different
  1455. list ideas
  1456. audience/purpose
  1457. essay
  1458. list ideas
  1459. audience/purpose
  1460. list ideas
  1461. student data
  1462. audience/purpose
  1463. student data
  1464. audience/purpose
  1465. list ideas
  1466. alike/different
  1467. Organize Ideas
  1468. essay
  1469. Organize Ideas
  1470. alike/different
  1471. list ideas
  1472. audience/purpose
  1473. essay
  1474. student data
  1475. Organize Ideas
  1476. alike/different
  1477. Organize Ideas
  1478. list ideas
  1479. audience/purpose
  1480. essay
  1481. alike/different
  1482. student data
  1483. help
  1484. audience/purpose
  1485. list ideas
  1486. audience/purpose
  1487. audience/purpose
  1488. list ideas
  1489. alike/different
  1490. Organize Ideas
  1491. Organize Ideas
  1492. essay
  1493. Pausing
  1494. help
  1495. student data
  1496. student data
  1497. help
  1498. Pausing
  1499. essay
  1500. Organize Ideas
  1501. Organize Ideas
  1502. alike/different
  1503. list ideas
  1504. audience/purpose
  1505. Pausing
  1506. student data
  1507.  
  1508.  
  1509. -- part contents for card part 45
  1510. ----- text -----
  1511.  
  1512.  
  1513.  
  1514. 02:07
  1515.  
  1516.  
  1517.  
  1518.  
  1519. 00:13
  1520.  
  1521.  
  1522.  
  1523.  
  1524.  
  1525.  
  1526.  
  1527.  
  1528.  
  1529.  
  1530.  
  1531.  
  1532.  
  1533.  
  1534.  
  1535.  
  1536.  
  1537.  
  1538.  
  1539.  
  1540.  
  1541.  
  1542.  
  1543.  
  1544.  
  1545. 00:07
  1546.  
  1547.  
  1548.  
  1549.  
  1550.  
  1551.  
  1552.  
  1553.  
  1554.  
  1555. 00:30
  1556.  
  1557.  
  1558.  
  1559.  
  1560.  
  1561.  
  1562.  
  1563.  
  1564.  
  1565.  
  1566.  
  1567.  
  1568.  
  1569.  
  1570.  
  1571.  
  1572.  
  1573.  
  1574.  
  1575.  
  1576.  
  1577.  
  1578.  
  1579.  
  1580.  
  1581.  
  1582.  
  1583.  
  1584.  
  1585.  
  1586.  
  1587.  
  1588.  
  1589.  
  1590.  
  1591.  
  1592.  
  1593.  
  1594.  
  1595.  
  1596.  
  1597.  
  1598.  
  1599.  
  1600.  
  1601.  
  1602.  
  1603.  
  1604.  
  1605.  
  1606.  
  1607. 0
  1608.  
  1609.  
  1610.  
  1611.  
  1612. 0
  1613.  
  1614.  
  1615.  
  1616.  
  1617.  
  1618.  
  1619. 1
  1620.  
  1621. -- part contents for card part 50
  1622. ----- text -----
  1623.                   - S T U D E N T    D A T A -
  1624.  
  1625. Student:  Mary
  1626.    Date:  Friday, December 9, 1988
  1627.   Class:  Class, Teacher
  1628.   Topic:  Indians
  1629.   Topic:  No topic has been entered.  See your teacher.
  1630.  
  1631. ================================================================
  1632. No.    Date       Time         Card              Work      Pause
  1633. ================================================================
  1634. 1    12/9/88    5:17 PM    student data          00:45               
  1635. 2                          audience/purpose      00:19               
  1636. 3                          Organize Ideas        05:16               
  1637. 4                          Pausing                         02:07     
  1638. 5                          Organize Ideas        02:19               
  1639. 6                          list ideas            00:11               
  1640. 7                          essay                 01:36               
  1641. 8                          alike/different       00:09               
  1642. 9                          audience/purpose      00:13               
  1643.  
  1644.  
  1645. -- part contents for card part 63
  1646. ----- text -----
  1647. 1    12/9/88    5:17 PM    student data    00:45        
  1648. 2            audience/purpose    00:19        
  1649. 3            Organize Ideas    05:16        
  1650. 4            Pausing        02:07    
  1651. 5            Organize Ideas    02:19        
  1652. 6            essay    01:36        
  1653. 7            alike/different    00:09        
  1654. 8            audience/purpose    00:13        
  1655. 9            Pausing        00:13    
  1656. 10            student data    01:28        
  1657. 11    1/6/89    7:11 PM    student data    00:19        
  1658. 12            audience/purpose    00:14        
  1659. 13            alike/different    00:10        
  1660. 14            list ideas    00:09        
  1661. 15            Organize Ideas    01:53        
  1662. 16            student data    05:49        
  1663. 17    2/2/89    9:30 PM    list ideas    00:02        
  1664. 18            audience/purpose    00:02        
  1665. 19            alike/different    00:01        
  1666. 20    2/2/89    9:33 PM    Organize Ideas    73:13        
  1667. 21            Organize Ideas    78:48        
  1668. 22            help    00:11        
  1669. 23            Organize Ideas    00:29        
  1670. 24            Organize Ideas    00:34        
  1671. 25            Organize Ideas    02:13        
  1672. 26            student data    00:07        
  1673. 27            help    00:08        
  1674. 28            student data    00:01        
  1675. 29            Organize Ideas    00:16        
  1676. 30            alike/different    00:02        
  1677. 31            Organize Ideas    00:11        
  1678. 32    2/20/89    3:50 PM    student data    01:09        
  1679. 33            help    00:34        
  1680. 34            student data    00:04        
  1681. 35            Pausing        00:07    
  1682. 36            student data    03:08        
  1683. 37            help    00:02        
  1684. 38            student data    06:47        
  1685. 39    2/21/89    9:18 PM    student data    00:33        
  1686. 40            audience/purpose    00:08        
  1687. 41            alike/different    00:09        
  1688. 42            list ideas    00:09        
  1689. 43            Organize Ideas    02:05        
  1690. 44            essay    00:53        
  1691. 45            Pausing        00:30    
  1692. 46    2/22/89    2:04 PM    student data    01:20        
  1693. 47            audience/purpose    00:02        
  1694. 48            Organize Ideas    16:47        
  1695. 49            alike/different    00:00        
  1696. 50            Organize Ideas    01:18        
  1697. 51            student data    00:42        
  1698. 52            Organize Ideas    00:04        
  1699. 53            alike/different    00:01        
  1700. 54            Organize Ideas    00:02        
  1701. 55            student data    00:07        
  1702. 56            Organize Ideas    00:09        
  1703. 57            essay    00:02        
  1704. 58            alike/different    00:01        
  1705. 59            list ideas    00:01        
  1706. 60            audience/purpose    00:01        
  1707. 61            essay    00:26        
  1708. 62            list ideas    00:02        
  1709. 63            audience/purpose    00:02        
  1710. 64            list ideas    00:07        
  1711.